home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 12 code / Globals in Standalone Code / StART ƒ / StART.h next >
Encoding:
C/C++ Source or Header  |  1992-10-16  |  333 b   |  23 lines  |  [TEXT/MPS ]

  1.  
  2. struct SaveA5Rec {
  3.     Ptr        oldA5;
  4.     Ptr        oldCurrentA5;
  5. };
  6.  
  7. typedef struct SaveA5Rec SaveA5Rec;
  8.  
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. void*    GetA0(void) = {0x2008};
  13.  
  14. pascal void    UseGlobals(SaveA5Rec*);
  15.  
  16. pascal void    CopyHostQD(GrafPtr* thePort, void* oldA5);
  17.  
  18. pascal void    DoneWithGlobals(const SaveA5Rec*);
  19.  
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23.